40799839e0
There isn't a good reason we should be defaulting to trace on for these scripts. Change-Id: I1b9ac9388f51a49e6912d800914a0e0f2faec604
11 lines
210 B
Bash
Executable File
11 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
package-uninstalls -d $(dirname $0)
|
|
package-installs-v2 --phase pre-install.d --uninstall /tmp/package-installs.json
|