Skip to content
This repository was archived by the owner on May 29, 2025. It is now read-only.

Commit 7ae783e

Browse files
committed
fixed #563
1 parent ba74f7e commit 7ae783e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

+xolotl/version.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
function version()
2-
disp('v21.3.18');
2+
disp('v21.3.20');

@xolotl/default.m

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,9 @@
3838
% to speed up subsequent runs. This is useful in scripts that
3939
% make figures, where the same simulation is expected to
4040
% be run more than once
41-
cache = false;
41+
cache = false;
42+
43+
44+
45+
%% path to github CLI
46+
gh_path = '/usr/local/bin/gh';

@xolotl/upload.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function upload(self)
3737

3838
self.integrate;
3939

40-
[e,o] = system(['/usr/local/bin/gh release upload bin ' binary_loc ' --repo sg-s/xolotl']);
40+
[e,o] = system([self.pref.gh_path ' release upload bin ' binary_loc ' --repo sg-s/xolotl']);
4141

4242
if any(strfind(o,'Successfully uploaded'))
4343
disp(['Uploaded binary with hash: ' self.hash])

0 commit comments

Comments
 (0)