Skip to content

Commit

Permalink
signalflow_examples: Fix chmod bitfield
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Dec 8, 2023
1 parent 573b35d commit 4cba7d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auxiliary/libs/signalflow_examples/signalflow_examples.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def download_examples() -> None:
url = "%s/%s" % (url_prefix, urllib.parse.quote(filename))
output_path = os.path.join(local_dir, filename)
urllib.request.urlretrieve(url, output_path)
os.chmod(output_path, 755)
os.chmod(output_path, 0o755)
print(" - Downloaded: %s" % filename)

for filename in audio_files:
Expand All @@ -71,4 +71,4 @@ def download_notebooks() -> None:
print(" - Downloaded: %s" % filename)

if __name__ == "__main__":
download_examples()
download_examples()

0 comments on commit 4cba7d1

Please sign in to comment.