mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
575bdb8451
- remove uninstall command
- add --reload to deno fetch - to ensure subsequent installation
upgrades script and deps
- fix executable shebang
- fix prompt for subsequent installation
- support custom installation dir via -d/--dir flag
Original: b13441fe8a
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
function echo(args: string[]) {
|
|
const msg = args.join(", ");
|
|
Deno.stdout.write(new TextEncoder().encode(msg));
|
|
}
|
|
|
|
echo(Deno.args.slice(1));
|