From 33ac90687ae602c12ba73082309ab032166b9bd4 Mon Sep 17 00:00:00 2001 From: rarost Date: Fri, 4 Apr 2025 14:48:33 +0000 Subject: [PATCH] tce-setup: missing space between " and ] on line 63. --- usr/bin/tce-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/bin/tce-setup b/usr/bin/tce-setup index 9383b61..7b25bf5 100755 --- a/usr/bin/tce-setup +++ b/usr/bin/tce-setup @@ -60,7 +60,7 @@ process_normal_tcedir() { setupExtnDirs() { [ -d "$MOUNTPOINT"/"$TCE_DIR"/optional ] || mkdir -p "$MOUNTPOINT"/"$TCE_DIR"/optional [ -d "$MOUNTPOINT"/"$TCE_DIR"/ondemand ] || mkdir -p "$MOUNTPOINT"/"$TCE_DIR"/ondemand - [ -f "$MOUNTPOINT"/"$TCE_DIR"/"$TARGETLIST"] || touch "$MOUNTPOINT"/"$TCE_DIR"/"$TARGETLIST" + [ -f "$MOUNTPOINT"/"$TCE_DIR"/"$TARGETLIST" ] || touch "$MOUNTPOINT"/"$TCE_DIR"/"$TARGETLIST" chown -R "$USER":staff "$MOUNTPOINT"/"$TCE_DIR" 2>/dev/null chmod -R g+w "$MOUNTPOINT"/"$TCE_DIR" 2>/dev/null }