Skip to content

Commit 251b791

Browse files
fix: remove extra shebang
1 parent 49002a3 commit 251b791

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/dist/run_command.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env bash
22
source ./codecov_envs
3-
#!/usr/bin/env bash
43

54
set +u
65
say() {

src/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def _copy_all_files(funcs):
7171
print(f'Copied {old_file} to {new_file} ({len(contents)} chars)')
7272

7373
def _combine_set_args_and_run(funcs):
74-
contents = [BASH, HEADER, funcs]
74+
contents = [BASH, HEADER, funcs.replace(BASH, "")]
7575
with open('src/dist/set_args.sh', 'r') as f:
7676
for line in f:
7777
contents.append(line)

0 commit comments

Comments
 (0)