mirror of
https://github.com/pnpm/pnpm.git
synced 2026-07-25 23:17:08 -04:00
9 lines
232 B
Batchfile
9 lines
232 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 Bearer %ENCODED%
|