git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113106 13f79535-47bb-0310-9956-ffa450edef68
8 lines
149 B
Bash
Executable File
8 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SEA_NAME=$1
|
|
SOURCE_DIRECTORY=$2
|
|
TARGET_DIR=$3
|
|
|
|
tar -cvzf ${TARGET_DIR}/${SEA_NAME}.tar.gz -C ${SOURCE_DIRECTORY} `ls ${SOURCE_DIRECTORY}`
|