7 lines
117 B
Bash
7 lines
117 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Commit the filter update
|
||
|
|
||
|
CURRENT_TIME="$(date -R -u)"
|
||
|
git commit -a -m "Filter updated: $CURRENT_TIME"
|