8 lines
122 B
Bash
8 lines
122 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
# Workaround for https://github.com/NixOS/nix/pull/6051
|
||
|
echo "some output"
|
||
|
|
||
|
mkdir $out
|
||
|
echo foo > $out/a-file
|