mirror of
https://github.com/pypiserver/pypiserver
synced 2024-11-09 16:45:51 +01:00
11 lines
268 B
Bash
Executable File
11 lines
268 B
Bash
Executable File
#! /bin/sh
|
|
|
|
gitversion=$(git describe --tags)
|
|
rm -rf .standalone
|
|
git-new-workdir . .standalone standalone 2>/dev/null|| exit 10
|
|
./gen-standalone.py
|
|
cp -p pypi-server-standalone.py .standalone
|
|
cd .standalone
|
|
git add .
|
|
git ci -m "add pypi-server-standalone $gitversion"
|