Skip to content

Commit

Permalink
operate within the subfolder 'install_data', rather than in the root …
Browse files Browse the repository at this point in the history
…directory, to keep the folder clean.
  • Loading branch information
drojf committed Feb 19, 2019
1 parent 5c908e2 commit 64f3b4a
Show file tree
Hide file tree
Showing 15 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions bootstrap/higu_linux64_installer/install
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
cd "$(dirname "$0")"
cd install_data
./.aria2c --allow-overwrite=true --auto-file-renaming=false https://raw.githubusercontent.com/07th-mod/python-patcher/master/scriptDownloadList.txt
./.aria2c --allow-overwrite=true --auto-file-renaming=false --input-file=scriptDownloadList.txt --dir=scripts
rm scriptDownloadList.txt
python ./scripts/main.py
./.aria2c --allow-overwrite=true --auto-file-renaming=false --input-file=scriptDownloadList.txt
python ./main.py
File renamed without changes.
File renamed without changes.
7 changes: 4 additions & 3 deletions bootstrap/higu_win_installer/install.bat
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
@echo off
cd install_data
IF NOT EXIST "python/python.exe" 7za x -aoa python_archive.7z
aria2c --allow-overwrite=true --auto-file-renaming=false https://raw.githubusercontent.com/07th-mod/python-patcher/master/scriptDownloadList.txt
aria2c --allow-overwrite=true --auto-file-renaming=false --input-file=scriptDownloadList.txt --dir=scripts
del scriptDownloadList.txt
"python/python.exe" scripts/main.py
aria2c --allow-overwrite=true --auto-file-renaming=false --input-file=scriptDownloadList.txt
"python/python.exe" main.py

echo -----------------------------------------------------------
echo ------------ Batch file has finished executing ------------
echo ------------ Press any key to close this window -----------
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 4 additions & 3 deletions bootstrap/higu_win_installer_32/install.bat
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
@echo off
cd install_data
IF NOT EXIST "python/python.exe" 7za x -aoa python_archive.7z
aria2c --allow-overwrite=true --auto-file-renaming=false https://raw.githubusercontent.com/07th-mod/python-patcher/master/scriptDownloadList.txt
aria2c --allow-overwrite=true --auto-file-renaming=false --input-file=scriptDownloadList.txt --dir=scripts
del scriptDownloadList.txt
"python/python.exe" scripts/main.py
aria2c --allow-overwrite=true --auto-file-renaming=false --input-file=scriptDownloadList.txt
"python/python.exe" main.py

echo -----------------------------------------------------------
echo ------------ Batch file has finished executing ------------
echo ------------ Press any key to close this window -----------
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 64f3b4a

Please sign in to comment.