hyper/app/lib/utils/url-regex.js

5 lines
321 B
JavaScript
Raw Normal View History

2016-07-14 15:40:15 -08:00
export const sh = /(ba)?sh: ((https?:\/\/)|(\/\/))?(.*): ((command not found)|(No such file or directory))/;
export const bash = sh;
2016-07-08 10:48:24 -08:00
export const zsh = /zsh: ((command not found)|(no such file or directory)): ((https?:\/\/)|(\/\/))?([^\n]+)/;
export const fish = /fish: Unknown command '((https?:\/\/)|(\/\/))?([^']+)'/;