1
0
Fork 0
mirror of https://git.madhouse-project.org/actions/nix.git synced 2024-10-17 00:04:41 +02:00
nix/develop/bin/nix-develop
Gergely Nagy 9cdda9ed9f ci: Add a shellcheck workflow, and fix SC2086 in develop
Signed-off-by: Gergely Nagy <me@gergo.csillger.hu>
2023-09-22 22:44:04 +02:00

13 lines
308 B
Bash
Executable file

#! /usr/bin/env bash
set -eo pipefail
workdir="$(mktemp -d)"
trap 'rm -rf "$workdir"' EXIT
echo "${INPUT_RUN}" >"${workdir}/run.sh"
__cmd="develop"
if [ "$(basename "$0")" = "nix-shell" ]; then
__cmd="shell"
fi
nix "${__cmd}" "${INPUT_FLAKE}#${INPUT_PACKAGE}" -c bash -eo pipefail "${workdir}/run.sh"