This commit is contained in:
Cris Stringfellow 2024-08-01 12:21:44 +08:00
parent 0fb11f88b6
commit 81230c1adc
No known key found for this signature in database
1 changed files with 7 additions and 0 deletions

View File

@ -15,4 +15,11 @@ fi
echo "#!/usr/bin/env node" > build/global/downloadnet.cjs
cat build/cjs/out.cjs >> build/global/downloadnet.cjs
chmod +x build/global/downloadnet.cjs
if [[ "$OSTYPE" == darwin* ]]; then
./stampers/macos.sh
elif [[ "$OSTYPE" == win* ]]; then
./stampers/win.sh
else
./stampers/nix.sh
fi