Skip to content

Commit

Permalink
#232: updated for Package Manager.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kray-G committed Jul 12, 2021
1 parent 62a38af commit 54305ac
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/std/pkg/Develop.kx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
class DevelopPackageUpdater(pkgname, version) {

const DEF_FILE_NAME = "kxpackage.def";
var defFile_ = $pkgpath / DEF_FILE_NAME;
var root_ = $pkgpath / pkgname / version;
var candidates_;
var defFile_, root_, candidates_;

private initialize() {
pkgname += "-dev";
defFile_ = $pkgpath / DEF_FILE_NAME;
root_ = $pkgpath / pkgname / version;
@root = root_;
System.println("$PKGPATH: ", root_);
}
Expand Down

0 comments on commit 54305ac

Please sign in to comment.