mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-25 15:28:52 -05:00
9 lines
231 B
Batchfile
9 lines
231 B
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
set "PASSWORD=password"
|
|
|
|
for /f "delims=" %%i in ('powershell -Command "[Convert]::ToBase64String([Text.Encoding]::UTF8.GetBytes('!PASSWORD!'))"') do set ENCODED=%%i
|
|
|
|
echo Basic %ENCODED%
|