From bc8deb4b68dbe605f1f7b70f7f2244c00396e352 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 11 Feb 2019 09:52:33 -0500 Subject: [PATCH] Fix git copy in builddeb script The builddeb script attempted to build in a directory without .git, breaking the version deterimination logic. Change-Id: Ia2be3a75bdcdf9335586bb40e05e635f4b497ca5 --- builddeb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builddeb b/builddeb index 6abb985a..b1acccd5 100755 --- a/builddeb +++ b/builddeb @@ -1,7 +1,7 @@ #!/bin/bash cd `dirname $0` mkdir -p /tmp/pyghmi -cp -a * /tmp/pyghmi +cp -a * .git /tmp/pyghmi cd /tmp/pyghmi if grep wheezy /etc/os-release; then # wheezy is difficult on pyca, use cryptodomex for that platform