diff options
author | Charadon <dev@iotib.net> | 2022-09-26 13:00:36 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-09-26 13:00:36 -0400 |
commit | 995e5ebe1bd141676fbde2d15ec267e99e88d0b3 (patch) | |
tree | c92a372df4b519671a1dda800bf836a8f14f0123 | |
parent | a66e905ed221810e37260085f95022cb6597f849 (diff) | |
download | Pong-C-995e5ebe1bd141676fbde2d15ec267e99e88d0b3.tar.gz |
distribute.sh: Fixed typo
-rwxr-xr-x | distribute.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distribute.sh b/distribute.sh index 5cf21e0..6d65f78 100755 --- a/distribute.sh +++ b/distribute.sh @@ -17,7 +17,7 @@ case "$(uname -s)" in MINGW*) for i in $(ldd "$CONFIG_BUILD_DIR"/bin/Pong* | awk '/mingw*/ {print $3}'); do - cp "$i" "$CONFIG_INSTALL_PREFIX/libs/" + cp "$i" "$CONFIG_INSTALL_PREFIX/" done WINDOWS="true" ;; |