Skip to content

Commit fb4ca2d

Browse files
committed
Fix bash command
1 parent 737ac90 commit fb4ca2d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

bb.edn

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@
7272
which-test (let [curr-shell (System/getenv "SHELL")
7373
path (System/getenv "PATH")]
7474
(shell {:extra-env {"PATH" path}} "echo \"conveyor PATH: $(which conveyor)\"")
75-
(shell {:extra-env {"PATH" path}} (str curr-shell " -c 'echo \"/bin/bash conveyor PATH: $(which conveyor)\"'")))
75+
(shell {:extra-env {"PATH" path}} (str curr-shell " -c 'echo \"/bin/bash conveyor PATH: $(which conveyor)\"'"))
76+
(shell {:extra-env {"PATH" path}} (str curr-shell " -c 'echo \"/bin/bash ls PATH: $(which ls)\"'")))
7677

7778
conveyor-test (let [curr-shell (System/getenv "SHELL")]
78-
(:out (shell {:out :string} (str curr-shell "-c 'cd $HOME/.local/bin && ./conveyor --version'"))))}}
79+
(:out (shell {:out :string} (str curr-shell " -c 'cd $HOME/.local/bin && ./conveyor --version'"))))}}

0 commit comments

Comments
 (0)