ISO/configs/baseline
Justin Kromlinger 6f0a15c34a
Fix unexpected script_path behaviour
When one calls the `build.sh` scripts with bash instead of the shebang
`$script_path` contains the filepath, not the parent dir:

```
% cd /path
% grep -A2 script_path= build.sh
script_path=$(readlink -f "${0%/*}")
echo "$script_path"
exit 0
% ./build.sh
/path
% bash build.sh
/path/build.sh
```

This commit fixes that:

```
% grep -A2 script_path= build.sh
script_path="$( cd -P "$( dirname "$(readlink -f "$0")" )" && pwd )"
echo "$script_path"
exit 0
% ./build.sh
/path
% bash build.sh
/path
```
2020-07-16 22:54:16 +02:00
..
isolinux [archiso] changes for syslinux 6 2013-10-19 15:02:35 -03:00
syslinux Automatically boot the installation environment from syslinux 2020-07-11 10:45:22 +03:00
build.sh Fix unexpected script_path behaviour 2020-07-16 22:54:16 +02:00
mkinitcpio.conf configs/*: convert to new array-based mkinitcpio vars 2017-11-02 20:02:14 -03:00