5 lines
134 B
Bash
Executable File
5 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
# Git filter to replace USERNAME with $USER.
|
|
# Assigned to cluster_info files in .gitattributes
|
|
sed -e "s/USERNAME/$USER/g"
|