Skip to content

Commit

Permalink
fix: building under nixos (#58)
Browse files Browse the repository at this point in the history
Very simple fix to build under NixOS.
On NixOS, /bin/bash is not here, so the build failed.
So it is much stronger to use /usr/bin/env bash.
  • Loading branch information
hatch01 authored Jan 29, 2024
1 parent f756772 commit a5e2126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_build_tool.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -e

Expand Down

0 comments on commit a5e2126

Please sign in to comment.