about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-09-26 13:00:36 -0400
committerCharadon <dev@iotib.net>2022-09-26 13:00:36 -0400
commit995e5ebe1bd141676fbde2d15ec267e99e88d0b3 (patch)
treec92a372df4b519671a1dda800bf836a8f14f0123
parenta66e905ed221810e37260085f95022cb6597f849 (diff)
downloadPong-C-995e5ebe1bd141676fbde2d15ec267e99e88d0b3.tar.gz
distribute.sh: Fixed typo
-rwxr-xr-xdistribute.sh2
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"
 		;;