diff options
author | reedrw <[email protected]> | 2020-06-06 23:58:47 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-06 23:58:47 +0100 |
commit | 8857d6b995767b3cc4c113ff38425f052e4bfa05 (patch) | |
tree | 09df83fc3197477edbf0a158da1f3a2e46aa80a1 | |
parent | 6ba7eab5847ab65331b975437150990c48b59024 (diff) |
fix build script trying to tar invalid directory
Before, it tried to tar `build/ligature_plugins`, which doesn't exist because the plugins were actually copied to `build/scientifica/ligature_plugins`
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ main() { | |||
37 | 37 | ||
38 | echo "[~] Entering build directory ..." | 38 | echo "[~] Entering build directory ..." |
39 | cd build || echo "[!] Failed to enter build directory!" | 39 | cd build || echo "[!] Failed to enter build directory!" |
40 | tar c --file scientifica.tar scientifica ligature_plugins | 40 | tar c --file scientifica.tar scientifica |
41 | echo "[~] Leaving build directory ..." | 41 | echo "[~] Leaving build directory ..." |
42 | 42 | ||
43 | echo "[!] Done!" | 43 | echo "[!] Done!" |