7 Jan
2013
7 Jan
'13
3:33 p.m.
At Mon, 07 Jan 2013 11:58:10 +0100, David Henningsson wrote:
I have a script that picks daily snapshots from ftp://ftp.suse.com/pub/people/tiwai/snapshot/alsa-driver-snapshot.tar.gz ...and I just noticed that the directory layout has changed, so what was "alsa-driver" is now "alsa-driver/alsa".
Is this expected, i e, should I update my script to follow this new layout, or was it a mistake?
It's no mistake, done intentionally so. But I'm going to change the script to create a tarball without alsa/ subdirectory later. But right now no time.
As a workaround, just put a line like below in your script.
test -d alsa && cd alsa
Takashi