mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
14 lines
231 B
Bash
Executable File
14 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#-------------------------------------------------------
|
|
# Hack to allow chmodding in
|
|
# a zippy.
|
|
#
|
|
# usage: chmod <fileToChmod>
|
|
#
|
|
#-------------------------------------------------------
|
|
|
|
echo chmodding $1
|
|
chmod 777 $1
|
|
|