Skip to content

Commit 4a74bf1

Browse files
committed
More debugging.
1 parent fd4691c commit 4a74bf1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gh-assets-clone.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22
# Script to setup the assets clone of the repository using GIT_ASSETS_BRANCH and
33
# GIT_API_KEY.
44

postgres-metrics-get-changes.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
# output by the exporter and then build lists of added/removed metrics.
44

55
old_src="$1"
6-
[ ! -e "$old_src" ] && exit 1
6+
if [ ! -d "$old_src" ] ; then
7+
mkdir -p "$old_src"
8+
fi
79

810
function generate_add_removed() {
911
type="$1"

0 commit comments

Comments
 (0)