8 lines
175 B
Plaintext
8 lines
175 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
tamarin_info "Copying sources to workspace 'src' directory..."
|
||
|
|
||
|
mkdir src
|
||
|
# Copying all read-only sources to the current workspace src
|
||
|
cp -r /src/. ./src
|