You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
309 B
17 lines
309 B
#!/usr/bin/env bash |
|
|
|
version=$1 |
|
|
|
if [ "$version" = "" ]; then |
|
version=$(date -u '+%Y%m%d') |
|
fi |
|
echo "version = $version" |
|
|
|
dir="color-theme-lunarized-${version}" |
|
|
|
mkdir $dir |
|
|
|
cp *.el $dir |
|
sed -i "s/%%version%%/$version/" "$dir/color-theme-lunarized-pkg.el" |
|
|
|
tar cf color-theme-lunarized-${version}.tar $dir
|
|
|