Commits

practicalswift committed 6ed6b6671ef
[gardening] Use '#!/usr/bin/env bash' instead of '#!/bin/bash' Before this commit: ``` $ git grep '#!/usr/bin/env bash' | wc -l 10 $ git grep '#!/bin/bash' | wc -l 1 ``` After this commit: ``` $ git grep '#!/usr/bin/env bash' | wc -l 11 $ git grep '#!/bin/bash' | wc -l 0 ```