Skip to content
Snippets Groups Projects
Commit bc70984e authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

Merge branch '5927-overide-phase-per-project' into 'master'

fix for tgz without starting ./ in filelisting

See merge request !3
parents b2354e12 048c4c4d
No related branches found
No related tags found
1 merge request!3fix for tgz without starting ./ in filelisting
...@@ -79,7 +79,8 @@ ...@@ -79,7 +79,8 @@
echo echo
echo --- scanning archive $tgz echo --- scanning archive $tgz
tar -tzf $tgz | sed 's#/$##g' | sort >$filetgz # tar -tzf $tgz | sed 's#/$##g' | sort >$filetgz
tar -tzf $tgz | sed 's#/$##g' | sed "s#^#./#g" | sed "s#^\./\./#./#g" | sort >$filetgz
ls -l $filetgz ls -l $filetgz
wc -l $filetgz wc -l $filetgz
head $filetgz head $filetgz
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment