diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/install.sh | 2 | ||||
-rwxr-xr-x | src/profile.sh | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/install.sh b/src/install.sh index fb4ede1..3168fdc 100644 --- a/src/install.sh +++ b/src/install.sh @@ -1,7 +1,7 @@ #!/bin/sh extract () { - tar -h --keep-old-files -p -vvxf $1 -C ${SYSROOT} 2>${LOG_FILE} | grep ^- | tr -s " " | cut -d" " -f6 | cut -c2- + tar -h --keep-old-files -p -vvxf $1 -C ${SYSROOT} 2>${LOG_FILE} | grep -v ^d | tr -s " " | cut -d" " -f6 | cut -c2- } install_package () { diff --git a/src/profile.sh b/src/profile.sh index 1fa6ecd..0ddcc0a 100755 --- a/src/profile.sh +++ b/src/profile.sh @@ -1,8 +1,8 @@ #!/bin/sh -. /usr/lib/colors.sh && - export HBAR_COMPLETE="-c ${GREEN}${BG_DEFAULT}" && - export HBAR_RED="-c ${BLACK}${BG_RED}" +. /usr/lib/colors.sh +export HBAR_COMPLETE="-c ${GREEN}${BG_DEFAULT}" +export HBAR_RED="-c ${BLACK}${BG_RED}" . /usr/lib/glyphs.sh |