pillar icon indicating copy to clipboard operation
pillar copied to clipboard

Clean wrappers

Open Ducasse opened this issue 6 years ago • 0 comments

the -b newpipeline in pillar-dev-upgrade looks suspicious to me

#!/usr/bin/env bash

Bash3 Boilerplate. Copyright (c) 2014, kvz.io

set -o errexit set -o pipefail set -o nounset set -o xtrace

__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

This script upgrades the current pillar installation to latest stable version published in the stable branch

rm -rf /tmp/pillar && mkdir -p /tmp/pillar git clone [email protected]:pillar-markup/pillar.git -b newpipeline /tmp/pillar

cd /tmp/pillar ./scripts/build.sh

rm -rf ${__dir} mv build ${__dir} rm -rf /tmp/pillar

Ducasse avatar Feb 24 '20 09:02 Ducasse