0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00

[ci] format

This commit is contained in:
matthewp 2023-11-10 13:30:21 +00:00 committed by astrobot-houston
parent 7dedd17fc4
commit fb94d575af

View file

@ -57,10 +57,9 @@ async function copyToClipboard(text: string) {
return;
}
command = 'xclip -sel clipboard -l 1';
}
catch (e) {
} catch (e) {
// Did not find xclip, bail out!
return
return;
}
}