Skip to content

Commit

Permalink
Generated target setup file was missing a shebang line
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh committed Nov 13, 2023
1 parent b70407a commit 01f6659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/generate_setup_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self, tue_env_dir=None):
def generate_setup_file(self) -> None:
installed_targets_dir = os.path.join(self._tue_env_dir, ".env", "installed")

lines = ["# This file was auto-generated by tue-get. Do not change this file.\n"]
lines = ["#! /usr/bin/env bash\n", "# This file was auto-generated by tue-get. Do not change this file.\n"]

if os.path.isdir(self._tue_dependencies_dir):
for target in os.listdir(installed_targets_dir):
Expand Down

0 comments on commit 01f6659

Please sign in to comment.