Rename scripts to extensions
This commit is contained in:
parent
8a4f75e8c8
commit
a7d0e54291
1 changed files with 6 additions and 6 deletions
12
arkdep-build
12
arkdep-build
|
@ -146,9 +146,9 @@ if [[ $type == 'archlinux' ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Run post-bootstrap script if exists
|
# Run post-bootstrap script if exists
|
||||||
if [[ -f $variantdir/scripts/post-bootstrap.sh ]]; then
|
if [[ -f $variantdir/extensions/post-bootstrap.sh ]]; then
|
||||||
printf '\e[1;34m-->\e[0m\e[1m Running post-bootstrap script\e[0m\n'
|
printf '\e[1;34m-->\e[0m\e[1m Running post-bootstrap extension\e[0m\n'
|
||||||
(source $variantdir/scripts/post-bootstrap.sh)
|
(source $variantdir/extensions/post-bootstrap.sh)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Read package list and install secondary system components, skip if not used
|
# Read package list and install secondary system components, skip if not used
|
||||||
|
@ -159,9 +159,9 @@ if [[ $type == 'archlinux' ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Run post-install script if exists
|
# Run post-install script if exists
|
||||||
if [[ -f $variantdir/scripts/post-install.sh ]]; then
|
if [[ -f $variantdir/extensions/post-install.sh ]]; then
|
||||||
printf '\e[1;34m-->\e[0m\e[1m Running post-install script\e[0m\n'
|
printf '\e[1;34m-->\e[0m\e[1m Running post-install extension\e[0m\n'
|
||||||
(source $variantdir/scripts/post-install.sh)
|
(source $variantdir/extensions/post-install.sh)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Clear pacman cache
|
# Clear pacman cache
|
||||||
|
|
Loading…
Add table
Reference in a new issue