Skip to content

Commit

Permalink
try pre-install
Browse files Browse the repository at this point in the history
  • Loading branch information
drernie committed Jan 24, 2024
1 parent 61ec434 commit a1bcd50
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Changelog

## [0.7.6] 2024-01-10 UNOFFICIAL
## [0.7.6] 2024-01-24

- Fix "&path=" Quilt+ URIs
- Pre-install package if "&path" present
- Add `path-input` integration test
- Add unit test for "&path=" Quilt+ URIs
- Re-enable crash on failure

## [0.7.5] 2023-10-17
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ class QuiltPackage {
void setup() {
Files.createDirectories(this.folder)
this.installed = false
if (this.parsed.hasPath()) {
install()
}
}

boolean is_force() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ final class QuiltFileSystem extends FileSystem implements Closeable {
}

QuiltFileAttributes readAttributes(QuiltPath path) {
//log.debug("QuiltFileAttributes QuiltFileSystem.readAttributes($path)")
log.debug("QuiltFileAttributes QuiltFileSystem.readAttributes($path)")
Path installedPath = path.localPath()
try {
BasicFileAttributes attrs = Files.readAttributes(installedPath, BasicFileAttributes)
Expand Down

0 comments on commit a1bcd50

Please sign in to comment.