diff options
author | 0neGal <mail@0negal.com> | 2023-01-15 20:57:41 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2023-01-15 20:57:41 +0100 |
commit | 84a88c8bdbe2f85e14032f5b9941549fb8553f4c (patch) | |
tree | 247586a887f663b78033423ec88e3266914a33c0 | |
parent | 72c3c54dbf24819072fc38eaf552b5870d6bbe57 (diff) | |
download | Viper-84a88c8bdbe2f85e14032f5b9941549fb8553f4c.tar.gz Viper-84a88c8bdbe2f85e14032f5b9941549fb8553f4c.zip |
rename build/ to scripts/
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | scripts/langs.js (renamed from build/langs.js) | 0 | ||||
-rwxr-xr-x | scripts/publish.sh (renamed from build/publish.sh) | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index bb15d1c..978b41f 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ } }, "scripts": { - "langs": "node build/langs.js", + "langs": "node scripts/langs.js", "start": "npx electron src/index.js", "debug": "npm run devtools", "devtools": "npx electron src/index.js --devtools", diff --git a/build/langs.js b/scripts/langs.js index e870a3c..e870a3c 100644 --- a/build/langs.js +++ b/scripts/langs.js diff --git a/build/publish.sh b/scripts/publish.sh index 042b7c1..bff91df 100755 --- a/build/publish.sh +++ b/scripts/publish.sh @@ -26,7 +26,7 @@ REMOTEVERSION="$(curl --silent "https://api.github.com/repos/0neGal/viper/releas } -node build/langs.js || { +node scripts/langs.js || { echo "Please fix localization errors before publishing..." exit 1 } |