9 lines
148 B
Bash
9 lines
148 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
# deploy the server
|
||
|
|
#
|
||
|
|
# usage:
|
||
|
|
# deploy server/target/ejb-uebung-1.0-SNAPSHOT.jar
|
||
|
|
|
||
|
|
cp -v "$1" "$WILDFLY_BASE_DIR/deployments/"
|