mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* New alpine based plugin ci image - smaller, based on alpine (downloads in 7 to 10 seconds) - Has updated gget that uses tar.gz - Unpacks to /opt/grafana - Compatible cp with toolkit * needed build tools for go lint * added built vm to test tool * add circleci plugin config * added openssh to image * fix for gget & renamed to ginstall
8 lines
111 B
Bash
Executable File
8 lines
111 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" == "-rn" ]; then
|
|
false | busybox cp -i -r "$2" "$3" 2>/dev/null
|
|
else
|
|
busybox cp $*
|
|
fi
|