-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
download-dependencies: use unix style line endings
- Loading branch information
1 parent
50bc640
commit af339af
Showing
22 changed files
with
82 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
tools/download-dependencies-companion-app/download-dependencies-companion-app.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
#!/bin/sh | ||
sh download-unirx.sh | ||
sh download-serilog.sh | ||
sh download-leantween.sh | ||
sh download-leantween.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 15 additions & 14 deletions
29
tools/download-dependencies-main-game/download-dependencies-main-game.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
#!/bin/sh | ||
sh download-leantween.sh | ||
sh download-unirx.sh | ||
sh download-csharpsynthforunity.sh | ||
sh download-text-mesh-pro-resources.sh | ||
sh download-serilog.sh | ||
sh download-jokenizer.sh | ||
sh download-dynamicqueryable.sh | ||
sh download-spleetersharp.sh | ||
sh download-unitystandalonefilebrowser.sh | ||
sh download-lrcparser.sh | ||
sh download-litenetlib.sh | ||
sh download-nhyphenator.sh | ||
sh download-jsonnet-contractresolvers.sh | ||
#!/bin/sh | ||
sh download-leantween.sh | ||
sh download-unirx.sh | ||
sh download-csharpsynthforunity.sh | ||
sh download-text-mesh-pro-resources.sh | ||
sh download-serilog.sh | ||
sh download-jokenizer.sh | ||
sh download-dynamicqueryable.sh | ||
sh download-spleetersharp.sh | ||
sh download-unitystandalonefilebrowser.sh | ||
sh download-lrcparser.sh | ||
sh download-litenetlib.sh | ||
sh download-nhyphenator.sh | ||
sh download-jsonnet-contractresolvers.sh | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 27 additions & 26 deletions
53
tools/download-dependencies-main-game/download-litenetlib.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
#!/bin/sh | ||
#!/bin/sh | ||
|
||
old_dir=$(pwd) | ||
|
||
cd "../../UltraStar Play/Packages/playshared/Runtime/Plugins" | ||
echo "Removing old LiteNetLib folder..." | ||
rm -rf LiteNetLib | ||
mkdir LiteNetLib | ||
cd LiteNetLib | ||
|
||
echo "Cloning LiteNetLib from remote..." | ||
git init | ||
git remote add origin https://github.com/RevenantX/LiteNetLib.git | ||
git config core.sparsecheckout true | ||
echo "LiteNetLib/*" >> .git/info/sparse-checkout | ||
git pull --depth=100 origin master | ||
# Commit from 24 April 2023: 47d57213baa96d4b343741c6ff3c2eedde961d46 | ||
git checkout 47d57213baa96d4b343741c6ff3c2eedde961d46 | ||
|
||
echo "Moving downloaded files to correct position for this project..." | ||
mv -v LiteNetLib/* ./ | ||
rm -rf ./LiteNetLib | ||
rm -rf .git | ||
|
||
cd "$old_dir" | ||
echo "Downloading LiteNetLib done" | ||
echo "" | ||
|
||
old_dir=$(pwd) | ||
|
||
cd "../../UltraStar Play/Packages/playshared/Runtime/Plugins" | ||
echo "Removing old LiteNetLib folder..." | ||
rm -rf LiteNetLib | ||
mkdir LiteNetLib | ||
cd LiteNetLib | ||
|
||
echo "Cloning LiteNetLib from remote..." | ||
git init | ||
git remote add origin https://github.com/RevenantX/LiteNetLib.git | ||
git config core.sparsecheckout true | ||
echo "LiteNetLib/*" >> .git/info/sparse-checkout | ||
git pull --depth=100 origin master | ||
# Commit from 24 April 2023: 47d57213baa96d4b343741c6ff3c2eedde961d46 | ||
git checkout 47d57213baa96d4b343741c6ff3c2eedde961d46 | ||
|
||
echo "Moving downloaded files to correct position for this project..." | ||
mv -v LiteNetLib/* ./ | ||
rm -rf ./LiteNetLib | ||
rm -rf .git | ||
|
||
cd "$old_dir" | ||
echo "Downloading LiteNetLib done" | ||
echo "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters