QuoteI don't have a way to commitFork...
I don't know why you don't listen to us.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
QuoteI don't have a way to commitFork...
$ cat release.sh
#!/bin/sh
cp ws-git/LateralGM/lgm16b4.jar Dropbox/Public/enigma-dep/lgm16b4.jar
#should probably make it so `release.sh e` does enigma.jar only.
cp enigma-dev/plugins/enigma.jar Dropbox/Public/enigma-dev/enigma.jar
cd Dropbox/Public/enigma-dep
md5sum lgm16b4.jar > lgm.md5
md5sum enigma.jar > enigma.md5#!/bin/sh
DB=~/Dropbox/Public/enigma-dep
rel_l()
{
cp ws-git/LateralGM/lgm16b4.jar $DB/lgm16b4.jar
cd $DB
md5sum lgm16b4.jar > lgm.md5
cd -
}
rel_e()
{
cp enigma-dev/plugins/enigma.jar $DB/enigma.jar
cd $DB
md5sum enigma.jar > enigma.md5
cd -
}
if [ "$#" -gt "0" ]; then
echo $1 | grep l > /dev/null 2>&1
if [ $? = 0 ]; then
rel_l
fi
echo $1 | grep e > /dev/null 2>&1
if [ $? = 0 ]; then
rel_e
fi
fi
QuoteIf I wanted, I could recommit them. The issue is that I'm afraid he's right; some of those files just shouldn't be in the repository. We ought instead to include them with releases as needed. The issue is creating a release mechanism around git.This is my stance as well. I think it sums up the problem pretty nicely.