Skip to content

Commit

Permalink
Merge pull request #11214 from she3o/postBuild-improvements
Browse files Browse the repository at this point in the history
Update shebang in postBuild script to use 'env -S' for bash with verbose flag
  • Loading branch information
cscheid authored Oct 31, 2024
2 parents efeb89d + d5925ae commit aa98c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command/use/commands/binder/binder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const createPostBuild = (
pythonConfig: PythonConfiguration,
) => {
const postBuildScript: string[] = [];
postBuildScript.push("#!/usr/bin/env bash -v");
postBuildScript.push("#!/usr/bin/env -S bash -v");
postBuildScript.push("");
postBuildScript.push(`# determine which version of Quarto to install`);
postBuildScript.push(`QUARTO_VERSION=${quartoConfig.version}`);
Expand Down

0 comments on commit aa98c3d

Please sign in to comment.