|
|
@ -59,7 +59,7 @@ export class CopyShaToClipboardCommand extends ActiveEditorCommand { |
|
|
|
} |
|
|
|
catch (ex) { |
|
|
|
Logger.error(ex, 'CopyShaToClipboardCommand', `getBlameForLine(${blameline})`); |
|
|
|
return Messages.showGenericErrorMessage('Unable to copy ommit id'); |
|
|
|
return Messages.showGenericErrorMessage('Unable to copy commit id'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -69,13 +69,13 @@ export class CopyShaToClipboardCommand extends ActiveEditorCommand { |
|
|
|
catch (ex) { |
|
|
|
if (ex.message.includes("Couldn't find the required `xsel` binary")) { |
|
|
|
window.showErrorMessage( |
|
|
|
`Unable to copy commit id, xsel is not installed. You can install it via \`sudo apt install xsel\`` |
|
|
|
`Unable to copy commit id, xsel is not installed. Please install it via your package manager, e.g. \`sudo apt install xsel\`` |
|
|
|
); |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
Logger.error(ex, 'CopyShaToClipboardCommand'); |
|
|
|
return Messages.showGenericErrorMessage('Unable to copy ommit id'); |
|
|
|
return Messages.showGenericErrorMessage('Unable to copy commit id'); |
|
|
|
} |
|
|
|
} |
|
|
|
} |