mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
More of "export LC_ALL=C"
This commit is contained in:
parent
2e7f07ebeb
commit
35fbb5992f
@ -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
|
||||
|
@ -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
|
||||
|
@ -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}
|
||||
|
@ -1,7 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
#
|
||||
# This script is executed inside the builder image
|
||||
|
||||
export LC_ALL=C
|
||||
|
||||
set -e
|
||||
|
||||
PASS_ARGS="$@"
|
||||
|
@ -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
|
||||
|
@ -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}
|
||||
|
@ -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")
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
export LC_ALL=C
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
cd $DIR/..
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
export LC_ALL=C
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
cd $DIR/..
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user