Skip to content

Commit

Permalink
fix bin path when starting node and wallet. We're now adding BINS to …
Browse files Browse the repository at this point in the history
…the PATH but absolute path is still needed when starting node and wallet as services on Win.
  • Loading branch information
Piotr Stachyra committed Apr 22, 2021
1 parent 773c0a6 commit c4f239a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ end
task :start_node_and_wallet, [:env] do |task, args|
puts "\n >> Setting up cardano-node and cardano-wallet"

bin_dir = BINS
bin_dir = BINS == '' ? BINS : "#{BINS}/"
config_dir = File.join(CONFIGS, args[:env])
cd = Dir.pwd
mk_dir(STATE)
Expand Down

0 comments on commit c4f239a

Please sign in to comment.