From a5bc91e170c48755ab5d849599040c5dc403a516 Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Sun, 29 Mar 2015 11:36:18 +0200 Subject: [PATCH] labs: fix cp on OS X The cp command that comes with OS X does not know the -u option. Use -f instead. Change-Id: Ia943f2af924e9e17045c4507ab8bafd1eaf98f3c --- labs/tools/test-once.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/tools/test-once.sh b/labs/tools/test-once.sh index a68be8e3..442bb66a 100755 --- a/labs/tools/test-once.sh +++ b/labs/tools/test-once.sh @@ -44,7 +44,7 @@ REMOTE_TOP_DIR=$(get_remote_top_dir) EXE_DIR_NAME=test_tmp mkdir -p "$TOP_DIR/$EXE_DIR_NAME" -cp -u "$SCRIPT_SRC" "$TOP_DIR/$EXE_DIR_NAME" +cp -f "$SCRIPT_SRC" "$TOP_DIR/$EXE_DIR_NAME" if [[ "$REMOTE_TOP_DIR" = "/home/osbash" ]]; then # Not using a shared folder, we need to scp the script to the target node