itchio pushers

master
Allen Webster 2017-11-16 10:21:05 -05:00
parent 461dce8943
commit 73a004e74b
3 changed files with 66 additions and 0 deletions

0
buildsuper_x86.sh Normal file → Executable file
View File

31
itchio_push_all.bat Normal file
View File

@ -0,0 +1,31 @@
@echo off
REM todo rewrite this as a build.cpp script
IF "%3" == "" (echo need 3 parameters & GOTO END)
SET fake=%1
SET maj=%2
SET min=%3
SET vr=%fake%.%maj%.%min%
SET fv=%fake%.%maj%.%min%
SET flags=--fix-permissions --userversion=%vr%
SET dir=..\\current_dist_all_os
butler push %flags% %dir%/4coder-alpha-%fv%-win-x64.zip 4coder/4coder:win-x64-alpha
butler push %flags% %dir%/4coder-alpha-%fv%-linux-x64.zip 4coder/4coder:linux-x64-alpha
butler push %flags% %dir%/4coder-alpha-%fv%-mac-x64.zip 4coder/4coder:osx-x64-alpha
butler push %flags% %dir%/4coder-alpha-%fv%-win-x86.zip 4coder/4coder:win-x86-alpha
butler push %flags% %dir%/4coder-alpha-%fv%-linux-x86.zip 4coder/4coder:linux-x86-alpha
butler push %flags% %dir%/4coder-alpha-%fv%-mac-x86.zip 4coder/4coder:osx-x86-alpha
butler push %flags% %dir%/4coder-alpha-%fv%-super-win-x64.zip 4coder/4coder:win-x64-super
butler push %flags% %dir%/4coder-alpha-%fv%-super-linux-x64.zip 4coder/4coder:linux-x64-super
butler push %flags% %dir%/4coder-alpha-%fv%-super-mac-x64.zip 4coder/4coder:osx-x64-super
butler push %flags% %dir%/4coder-alpha-%fv%-super-win-x86.zip 4coder/4coder:win-x86-super
butler push %flags% %dir%/4coder-alpha-%fv%-super-linux-x86.zip 4coder/4coder:linux-x86-super
butler push %flags% %dir%/4coder-alpha-%fv%-super-mac-x86.zip 4coder/4coder:osx-x86-super
:END

35
itchio_push_all.sh Executable file
View File

@ -0,0 +1,35 @@
#!/bin/sh
#todo rewrite this as a build.cpp script
if [ "$#" -lt "3" ]
then
echo need 3 parameters
exit
else
fake=$1
maj=$2
min=$3
vr=$fake.$maj.$min
fv=$fake-$maj-$min
flags="--fix-permissions --userversion=$vr"
dir=../current_dist_all_os
butler push $flags $dir/4coder-alpha-$fv-win-x64.zip 4coder/4coder:win-x64-alpha
butler push $flags $dir/4coder-alpha-$fv-linux-x64.zip 4coder/4coder:linux-x64-alpha
butler push $flags $dir/4coder-alpha-$fv-mac-x64.zip 4coder/4coder:osx-x64-alpha
butler push $flags $dir/4coder-alpha-$fv-win-x86.zip 4coder/4coder:win-x86-alpha
butler push $flags $dir/4coder-alpha-$fv-linux-x86.zip 4coder/4coder:linux-x86-alpha
butler push $flags $dir/4coder-alpha-$fv-mac-x86.zip 4coder/4coder:osx-x86-alpha
butler push $flags $dir/4coder-alpha-$fv-super-win-x64.zip 4coder/4coder:win-x64-super
butler push $flags $dir/4coder-alpha-$fv-super-linux-x64.zip 4coder/4coder:linux-x64-super
butler push $flags $dir/4coder-alpha-$fv-super-mac-x64.zip 4coder/4coder:osx-x64-super
butler push $flags $dir/4coder-alpha-$fv-super-win-x86.zip 4coder/4coder:win-x86-super
butler push $flags $dir/4coder-alpha-$fv-super-linux-x86.zip 4coder/4coder:linux-x86-super
butler push $flags $dir/4coder-alpha-$fv-super-mac-x86.zip 4coder/4coder:osx-x86-super
fi