Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
flatsiedatsie committed Jan 20, 2023
1 parent 9be5d3b commit 4a063c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions js/extension.js
Expand Up @@ -115,19 +115,19 @@
if(typeof body.bits != 'undefined'){
this.bits = parseInt(body.bits);
if(this.debug){
console.log("system bits: ", this.bits);
console.log("candle store debug: system bits: ", this.bits);
}
}
if(typeof body.python_version != 'undefined'){
this.python_version = body.python_version;
if(this.debug){
console.log("python_version: ", this.python_version);
console.log("candle store debug: python_version: ", this.python_version);
}
}
if(typeof body.node_version != 'undefined'){
this.node_version = body.node_version;
if(this.debug){
console.log("node_version: ", this.node_version);
console.log("candle store debug: node_version: ", this.node_version);
}
}

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Expand Up @@ -55,7 +55,7 @@
}
},
"short_name": "candleapps",
"version": "0.5.8",
"version": "0.5.9",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
Expand Down
2 changes: 1 addition & 1 deletion pkg/candleappstore_adapter.py
Expand Up @@ -128,7 +128,7 @@ def __init__(self, verbose=True):
# Cached files paths
self.cached_get_apps_path = os.path.join(self.data_dir_path,'get_apps.json')
if os.path.exists(self.cached_get_apps_path):
os.system('rm self.cached_get_apps_path') # start without a cached version
os.system('rm ' + str(self.cached_get_apps_path)) # start without a cached version


# determine the persistent data path
Expand Down

0 comments on commit 4a063c4

Please sign in to comment.