Make files executable
This commit is contained in:
@ -181,6 +181,14 @@ def update(config):
|
||||
githubreleasesync(reponame, repoinfo, credz)
|
||||
|
||||
ncatsync(config['ncat'])
|
||||
make_executable()
|
||||
|
||||
|
||||
def make_executable():
|
||||
path = pathlib.Path('files')
|
||||
for fpath in path.glob("*"):
|
||||
if fpath.name != '.gitkeep':
|
||||
fpath.chmod(0o777)
|
||||
|
||||
|
||||
def print_menu(menu_options):
|
||||
|
Reference in New Issue
Block a user