More of "export LC_ALL=C"

This commit is contained in:
UdjinM6 2020-07-29 16:24:36 +03:00 committed by pasta
parent 2e7f07ebeb
commit 35fbb5992f
9 changed files with 23 additions and 5 deletions

View File

@ -1,7 +1,9 @@
#!/usr/bin/env bash
#
# This script is executed inside the builder image
export LC_ALL=C
set -e
source ./ci/matrix.sh

View File

@ -1,7 +1,9 @@
#!/usr/bin/env bash
#
# This script is executed inside the builder image
export LC_ALL=C
set -e
source ./ci/matrix.sh

View File

@ -1,8 +1,10 @@
#!/usr/bin/env bash
#
# This script is meant to be sourced into the actual build script. It contains the build matrix and will set all
# necessary environment variables for the request build target
export LC_ALL=C
export BUILD_TARGET=${BUILD_TARGET:-linux64}
export PULL_REQUEST=${PULL_REQUEST:-false}
export JOB_NUMBER=${JOB_NUMBER:-1}

View File

@ -1,7 +1,9 @@
#!/usr/bin/env bash
#
# This script is executed inside the builder image
export LC_ALL=C
set -e
PASS_ARGS="$@"

View File

@ -1,7 +1,9 @@
#!/usr/bin/env bash
#
# This script is executed inside the builder image
export LC_ALL=C
set -e
source ./ci/matrix.sh

View File

@ -1,4 +1,6 @@
#!/bin/bash
# use testnet settings, if you need mainnet, use ~/.dashcore/dashd.pid file instead
export LC_ALL=C
dash_pid=$(<~/.dashcore/testnet3/dashd.pid)
sudo gdb -batch -ex "source debug.gdb" dashd ${dash_pid}

View File

@ -3,6 +3,8 @@
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
export LC_ALL=C
DIR=$(dirname "$0")
[ "/${DIR#/}" != "$DIR" ] && DIR=$(dirname "$(pwd)/$0")

View File

@ -1,5 +1,7 @@
#!/usr/bin/env bash
export LC_ALL=C
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR/..

View File

@ -1,5 +1,7 @@
#!/usr/bin/env bash
export LC_ALL=C
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR/..