You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*install { |name, refspec|
var path;
if(Quarks.isPath(name).not, {
this.installQuark(Quark(name, refspec));
}, {
// local path / ~/ ./
path = this.asAbsolutePath(name);
if(File.exists(path).not, {
("Path does not exist" + path).warn;
});
this.link(path);
});
}
Shouldn't the behaviour be the same if the quark is local or not ? Perhaps *installQuark could be modified to also install local quarks, by not doing a checkout on those, but still running the rest of the code, like getting the dependencies.
The text was updated successfully, but these errors were encountered:
Shouldn't the behaviour be the same if the quark is local or not ? Perhaps *installQuark could be modified to also install local quarks, by not doing a checkout on those, but still running the rest of the code, like getting the dependencies.
The text was updated successfully, but these errors were encountered: