Skip to content

Commit

Permalink
Merge pull request #578 from MaslowCNC/try-no-cache
Browse files Browse the repository at this point in the history
No cache change
  • Loading branch information
BarbourSmith committed Jul 31, 2021
2 parents 2593f4d + 6145bde commit 17485c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/jsxcad-sys.js
Original file line number Diff line number Diff line change
Expand Up @@ -4201,7 +4201,7 @@ const readFile = async (options, path) => {
// info(`Read ${path}`);
}
const file = await getFile(options, path);
if (file.data === undefined || useCache === false) {
if (file.data === undefined || useCache === false|| true) {
file.data = await fetchPersistent(path, true);
}
if (workspace !== originalWorkspace) {
Expand Down

0 comments on commit 17485c4

Please sign in to comment.