diff options
author | Cem Keylan <cem@ckyln.com> | 2019-12-10 09:00:15 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2019-12-10 09:00:15 +0300 |
commit | 8129e7b5bbdcffaa7bab425f03e10f0dd6d157a4 (patch) | |
tree | d9c4e6c87f2e29c45e6e2ddd8461d3593f01ed59 | |
parent | c4690252c714f8d3122ac3a46f411b347033138c (diff) | |
download | mkrootfs-8129e7b5bbdcffaa7bab425f03e10f0dd6d157a4.tar.gz |
add comments and spaces
-rwxr-xr-x | mkrootfs.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mkrootfs.sh b/mkrootfs.sh index 4dd93ac..bbb1bff 100755 --- a/mkrootfs.sh +++ b/mkrootfs.sh @@ -78,9 +78,13 @@ msg "Starting build from the PKGS variable" # passing package names seperately # shellcheck disable=SC2086 kiss b $PKGS + msg "Package build complete, starting package installation" # shellcheck disable=SC2086 kiss i $PKGS + +# You can check out about post-installation +# from the configuration file msg "Installation Complete, starting custombuild procedure if there is one" postinstall |