Question related to mcz in sar

stéphane ducasse ducasse at iam.unibe.ch
Mon May 10 18:18:54 UTC 2004


I found my error.

I should do
| files |
files := #(
	 'Bot/MinerClean.2.cs'
	 'Flaps.1.cs'
	 'Goodies/ScreenCapture.4.cs'
  ).
files do: [ :cs | self fileInMemberNamed: cs ].
self fileInMonticelloZipVersionNamed: 'Shout-tween.1.mcz'.

and not

| files |
files := #(
	 'Bot/MinerClean.2.cs'
	 'Flaps.1.cs'
	 'Goodies/ScreenCapture.4.cs'
	 'Shout-tween.1.mcz'
  ).
files do: [ :cs | self fileInMemberNamed: cs ].




On 6 mai 04, at 22:06, stéphane ducasse wrote:

> Hi
>
> Here is my problem: I can load a sar that I produce with
> #! /bin/sh
> for arg
> do
>         target=`basename "PicaAndJoe"`.sar
>         echo zip -y -r "$target" "$arg"
>         zip -y -r "$target" "$arg"
> done
>
> and I can load shout in  in mcz format.
>
> I tried to put the Shout mcz file in the folder that contains all the 
> files of sar files then zip everything
> with the same process.
>
> When I loaded this new sar I get an error.
>
> I checked SarInstaller can deal with mcz so I do not understand why 
> this is not working.
> Then I can open the sar file with the zip tool of squeak and I see all 
> my files. But when I save the file
> it is still zipped.
> Does anybody experience something similar or different :)?
>
> Stef
>
>




More information about the Squeak-dev mailing list