vtasks-automate-cli 0.9.3 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/content/index.js +2 -1
  2. package/package.json +1 -1
package/content/index.js CHANGED
@@ -69,7 +69,8 @@ class GitService {
69
69
  return;
70
70
  }
71
71
  const split = item.split(" ");
72
- const url = split.find((t) => t.includes("http"));
72
+ //Support http and ssh
73
+ const url = split.find((t) => t.includes("http" || "git@github"));
73
74
 
74
75
  const urlSplit = url.split("/");
75
76
  const gitfile = urlSplit[urlSplit.length - 1];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vtasks-automate-cli",
3
- "version": "0.9.3",
3
+ "version": "0.9.5",
4
4
  "description": "Automate your vTasks workflow with ease — move tasks between states without opening the app",
5
5
  "bin": {
6
6
  "vtasks-automate": "init.js"