Sha256: 1e858ce41fc6c18669dcd2929ad63d0a28a7d40efe5c96ebf19732385a0bb4ee

Contents?: true

Size: 266 Bytes

Versions: 2

Compression:

Stored size: 266 Bytes

Contents

#!/bin/sh

echo "Removing execute flags:"
for pattern in *.rb *.html *.erb *.haml *.yml *.css *.sass *.rake *.png *.jpg *.gif *.pdf *.txt *.rdoc Rakefile VERSION README Capfile
do
  echo "- $pattern"
  find . -name "$pattern" -exec chmod -x {} \;
done
echo "Done."

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
geordi-0.1.1 bin/remove-execute-flags
geordi-0.1.0 bin/remove-execute-flags