diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2024-07-14 13:27:28 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-07-20 08:08:46 +0700 |
commit | 6dbcf61117dc5ecd4e8d5a54e2efde16eee25ef3 (patch) | |
tree | 4ec62655e7468e96ad9e14c68b49cf2469346ff3 | |
parent | 0213b2e4cbd25cb28649f9789233410a52a196ac (diff) |
development/smartgit: Fixed chown syntax
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | development/smartgit/smartgit.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/development/smartgit/smartgit.SlackBuild b/development/smartgit/smartgit.SlackBuild index 71913051e9b3a..bb4d1ccd34edc 100644 --- a/development/smartgit/smartgit.SlackBuild +++ b/development/smartgit/smartgit.SlackBuild @@ -52,7 +52,7 @@ mkdir -p $TMP $PKG $OUTPUT cd $TMP tar xvf $CWD/$PRGNAM-generic-$FILE_VERSION.tar.gz cd $PRGNAM -chown -R root.root . +chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ -o -perm 511 \) -exec chmod 755 {} \; -o \ |