Skip to content
Snippets Groups Projects
Commit 71377e31 authored by q3k's avatar q3k
Browse files

micropython: unhardcode /bin/bash

/bin/bash does not exist on odd unixen (BSDs, NixOS, ...). /usr/bin/env is the current de facto standard
to get bash somewhat universally.
parent f54e3c0e
No related branches found
No related tags found
1 merge request!37micropython: unhardcode /bin/bash [MANUAL MERGE]
#!/bin/bash
#!/usr/bin/env bash
set -e
PYTHON="$1"
......
#!/bin/bash
#!/usr/bin/env bash
set -e
SOURCE_DIR="$1"
......
#!/bin/bash
#!/usr/bin/env bash
set -e
PYTHON="$1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment