ISO/configs/releng
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
..
airootfs Remove lynx usage in configs/releng/build.sh 2020-07-11 17:08:44 +03:00
efiboot/loader Standardizing boot loader entry format 2020-06-30 14:57:26 +02:00
isolinux [archiso] changes for syslinux 6 2013-10-19 15:02:35 -03:00
syslinux Warn about Syslinux's reboot.c32 and poweroff.c32 requiring APM 2020-07-11 15:10:34 +03:00
build.sh Fix unexpected script_path behaviour 2020-07-16 22:54:16 +02:00
mkinitcpio.conf [releng] bye pcmcia initcpio 2018-06-23 22:24:11 -03:00
packages.x86_64 Explicitly add linux and mkinitcpio to packages.x86_64 2020-07-12 17:54:31 +03:00
pacman.conf Update pacman.conf to the current version shipped by the pacman package 2020-07-11 16:28:31 +03:00