mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
3f0367b965
- Move builder scripts into tree proper instead of baked into docker images --HG-- extra : rebase_source : 761884f4b2142e58455498564bc35874fa891a21
10 lines
292 B
Bash
Executable File
10 lines
292 B
Bash
Executable File
#! /bin/bash -ex
|
|
|
|
# This script copies the contents of the "scripts" folder into a docker
|
|
# container using tar/untar the container id must be passed.
|
|
|
|
DIRNAME=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
docker exec $1 mkdir -p $2
|
|
cd $DIRNAME
|
|
tar -cv * | docker exec -i $1 tar -x -C $2
|