mirror of
https://github.com/grafana/grafana.git
synced 2026-07-29 15:59:50 -05:00
* Various fixes and requests for toolkit: 1) Added toolkit to the alpine docker image, so we can get latest fixes without having to re-release 2) Removed cp from e2d docker image 3) Change github client to allow to specify an owner so it's not "grafana" only 4) Toolkit refers to grafana-ui and grafana-data "next", rather than canary * added toolkit to e2e docker image * Added tools to the e2e image for building/deploying oracle * added shasum * removing toolkit from images
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
|