hpi-swa / smalltalkCI

Framework for testing Smalltalk projects with GitHub Actions, GitLab CI, Travis CI, AppVeyor, and others.
MIT License
94 stars 68 forks source link

STONReaderError when Using option as #directory: '' #594

Open labordep opened 1 year ago

labordep commented 1 year ago

Using this script :

SmalltalkCISpec {
  #loading : [
    SCIMetacelloLoadSpec {
      #baseline : 'MyProject',
      #directory : '',
      #platforms : [ #pharo ]
    }
  ]
}

Does not work because of an error : SmalltalkCISpec is invalid: "STONReaderError: At character 163: ', expected'".

After remove #directory : '', this is ok !

My project have no /src directory :)