blob: a9bf22215079f8a0e0883576068fa9442c746e23 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
# Temporary!
pushd /workspaces/features/.github/devcontainers-action
rm ./action.yml
rm -rf ./dist
rm -rf ./lib
cp /home/codespace/ci/action.yml ./action.yml
cp -r /home/codespace/ci/dist ./dist
cp -r /home/codespace/ci/lib ./lib
|