1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: =?utf-8?b?SmFuIE1vasW+w63FoQ==?= <jan.mojzis@gmail.com>
Date: Thu, 30 Dec 2021 07:50:31 +0100
Subject: fix build hostname
Forwarded: not-needed
A hostname should be fixed to allow easier build process.
by Sergiusz Pawlowicz <debian@pawlowicz.name>
---
do | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/do b/do
index f953508..7876fc6 100755
--- a/do
+++ b/do
@@ -6,7 +6,7 @@
version=`cat version`
project=nacl
-shorthostname=`hostname | sed 's/\..*//' | tr -cd '[a-z][A-Z][0-9]'`
+shorthostname="debianbuildhost"
top="`pwd`/build/$shorthostname"
bin="$top/bin"
|