forked from lix-project/lix
10 lines
133 B
Bash
Executable file
10 lines
133 B
Bash
Executable file
#! /bin/sh
|
|
|
|
echo "builder 2"
|
|
|
|
mkdir $out || exit 1
|
|
cd $out || exit 1
|
|
echo "Hallo Wereld" > bla
|
|
echo $builder >> bla
|
|
echo $out >> bla
|