Skip to content

Commit

Permalink
scripts/view*: use bash from $PATH (#716)
Browse files Browse the repository at this point in the history
Existence of /bin/bash is not guaranteed.

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
veprbl and pre-commit-ci[bot] committed Apr 29, 2024
1 parent 81162e0 commit cf368f1
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion scripts/view1/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

#export DAWN_PS_PREVIEWER="derp"

Expand Down
2 changes: 1 addition & 1 deletion scripts/view11/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

#trignometry
sin ()
Expand Down
2 changes: 1 addition & 1 deletion scripts/view12/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

#trignometry
sin ()
Expand Down
2 changes: 1 addition & 1 deletion scripts/view13/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

echo "view2 produces a series of XY slices a different z locations."

Expand Down
2 changes: 1 addition & 1 deletion scripts/view14/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

#trignometry
sin ()
Expand Down
2 changes: 1 addition & 1 deletion scripts/view15/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

#trignometry
sin ()
Expand Down
2 changes: 1 addition & 1 deletion scripts/view2/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

echo "view2 produces a series of XY slices a different z locations."

Expand Down
2 changes: 1 addition & 1 deletion scripts/view20/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

#export DAWN_PS_PREVIEWER="derp"

Expand Down
2 changes: 1 addition & 1 deletion scripts/view3/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

echo "view3 produces a series of XY slices a different z locations."

Expand Down
2 changes: 1 addition & 1 deletion scripts/view4/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# this is a detector slice

Expand Down
2 changes: 1 addition & 1 deletion scripts/view5/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# this is a detector slice

Expand Down
2 changes: 1 addition & 1 deletion scripts/view50/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

#export DAWN_PS_PREVIEWER="derp"

Expand Down
2 changes: 1 addition & 1 deletion scripts/view6/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

echo "view6 produces a series of XY slices a different z locations."

Expand Down
2 changes: 1 addition & 1 deletion scripts/view7/generate_eps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

echo "view7 produces a series of XY slices a different z locations."

Expand Down

0 comments on commit cf368f1

Please sign in to comment.