about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--premake5.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/premake5.lua b/premake5.lua
index 4bfb452..a24e056 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -63,7 +63,7 @@ project("Pong")
         trigger = "install",
         description = "Install the game to prefix.",
         execute = function()
-            os.executef("mkdir -pv %s/Pong", prefix)
+            os.executef("mkdir -p %s/Pong", prefix)
             os.executef("cp -rv resources/ %s/Pong/", prefix)
             os.executef("install -Dvm755 bin/*/Pong %s/Pong/pong", prefix)
         end