mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2024-12-26 12:48:36 -06:00
fix: Typos and missing files
This commit is contained in:
parent
7b93c26540
commit
807dc33466
1 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ echo "$(date) | Starting check..."
|
||||||
|
|
||||||
if [[ $2 != buildonly ]]; then
|
if [[ $2 != buildonly ]]; then
|
||||||
# Create a backup of versions
|
# Create a backup of versions
|
||||||
cp verions.json versions.json.old
|
[ -f versions.json ] && cp versions.json versions.json.old
|
||||||
# Fetch all the dependencies
|
# Fetch all the dependencies
|
||||||
try=0
|
try=0
|
||||||
while :; do
|
while :; do
|
||||||
|
@ -269,7 +269,7 @@ if [ $error == 1 ]; then
|
||||||
|
|
||||||
if [[ $2 != buildonly ]]; then
|
if [[ $2 != buildonly ]]; then
|
||||||
mv versions.json versions.json.fail
|
mv versions.json versions.json.fail
|
||||||
mv versions.json.old versions.json
|
[ -f versions.json.old ] && mv versions.json.old versions.json
|
||||||
fi
|
fi
|
||||||
exit 4
|
exit 4
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue