Scamper icon indicating copy to clipboard operation
Scamper copied to clipboard

Dependency warning when installing the SAR

Open dubst3pp4 opened this issue 5 years ago • 0 comments

I just tried to install Scamper, but I get the following warning when I install the SAR (via File List):

This package depends on the following classes:
  FormInputSet
You must resolve these dependencies before you will be able to load these definitions: 
  FormInputSetStub
  FormInputSetStub>>initialize
  FormInputSetStub>>submitAsync
  FormInputSetStub>>submittedCount

@krono told me, that changing the order of the first two lines of the preamble should solve the issue - and he's right ;-) So changing

self fileInMonticelloZipVersionNamed: 'Scamper.mcz'.
self fileInMonticelloZipVersionNamed: 'HTML.mcz'.

to

self fileInMonticelloZipVersionNamed: 'HTML.mcz'.
self fileInMonticelloZipVersionNamed: 'Scamper.mcz'.

works and lets me install the SAR without problems.

dubst3pp4 avatar Sep 20 '18 08:09 dubst3pp4