This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 8622460 Fix Windows permissions new f23bb23 Another fix for b76f983 The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: bin/generate-nsis-version.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository buildscripts. commit f23bb23feee9276c659582aa703265cc41fe402c Author: Mike DePaulo <mikedep333@gmail.com> Date: Sat Jul 12 09:59:30 2014 -0400 Another fix for b76f983 --- bin/generate-nsis-version.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/generate-nsis-version.pl b/bin/generate-nsis-version.pl index cd3771b..5c5c3be 100755 --- a/bin/generate-nsis-version.pl +++ b/bin/generate-nsis-version.pl @@ -6,7 +6,7 @@ use POSIX qw(strftime); my $date = strftime "%Y.%m.%d", localtime; -open(F,"<../GIT/nightly/x2goclient/version.h") or die; +open(F,"<../../GIT/nightly/x2goclient/version.h") or die; my @lines=<F>; close(F); @@ -14,7 +14,7 @@ my $text=join("",@lines); my $version=(split("VERSION \"",$text))[1]; my $version=(split("\"",$version))[0]; -open(F,"<../GIT/nightly/x2goclient/nsis/x2goclient.nsi") or die; +open(F,"<../../GIT/nightly/x2goclient/nsis/x2goclient.nsi") or die; @lines=<F>; close(F); @@ -23,6 +23,6 @@ $text=join("",@lines); $text=~s/X2GOCLIENT_VERSION/$version-$date/; #print $text; -open(F,">../GIT/nightly/x2goclient/nsis/x2goclient.nsi") or die; +open(F,">../../GIT/nightly/x2goclient/nsis/x2goclient.nsi") or die; print F $text; close(F); -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git