mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 07:02:05 +08:00
8 lines
245 B
Bash
Executable File
8 lines
245 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
echo "Removing any previous installation"
|
|
pkgutil --pkg-info ${INSTALL_PKG_SESSION_ID} && pkgutil --only-files --files ${INSTALL_PKG_SESSION_ID} | while read installed
|
|
do rm -v ${DSTVOLUME}${installed}
|
|
done
|
|
echo "... removed"
|