Skip to content

Commit

Permalink
Merge pull request #82 from pneerincx/fix/depad-utils-v24.04.1
Browse files Browse the repository at this point in the history
Bugfix for postinstallcmds.
  • Loading branch information
RoanKanninga authored May 23, 2024
2 parents 45dacae + 1de3ee7 commit 9584cdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions d/depad-utils/depad-utils-v24.04.1.eb
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ cmds_map = [('.*', "ls -ahl %(source)s")]
# (Mode may by masked by umask.)
#
postinstallcmds = [
'for executable in $(ls -1 %(installdir)s/bin/* 2> /dev/null | grep -v '.cfg'); do chmod 775 ${executable}; done',
'chmod -R g+rwX,o+rX,o-w %(installdir)s/*'
'for executable in $(ls -1 "%(installdir)s/bin/"* 2> /dev/null | grep -v ".cfg"); do chmod 775 "${executable}"; done',
'chmod -R g+rwX,o+rX,o-w "%(installdir)s/"*'
]

#
Expand Down

0 comments on commit 9584cdf

Please sign in to comment.