mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 21:03:12 +00:00
7 lines
245 B
Bash
Executable file
7 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"
|