home/scripts: fix shubang
This commit is contained in:
parent
75519eb6ab
commit
8fb8cc9d6b
2 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
bin="himalaya"
|
||||
|
||||
|
|
5
scripts/slugify.ts
Normal file → Executable file
5
scripts/slugify.ts
Normal file → Executable file
|
@ -1,3 +1,8 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
/*
|
||||
#!nix-shell -i "deno run" -p deno
|
||||
*/
|
||||
|
||||
import { slugify } from "https://deno.land/x/slugify/mod.ts";
|
||||
|
||||
for (const sourceFileName of Deno.args) {
|
||||
|
|
Loading…
Reference in a new issue