Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
In fact, the check broke the Purdue CS boxes because it was being run under
the Xsession program, which is not a login shell.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Conflicts:
# .config/X11/clientrc
# .config/bash/rc.sh
# .config/cron/make-config
# .config/emacs/custom.el
# .config/emacs/init.el
# .config/login.d/10_selected-editor.sh
# .config/login.sh
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Use
- #!/hint/bash for bash that gets sourced (non-executable)
- #!/hint/sh for sh(1) that gets sourced (non-executable)
- #!/bin/sh for sh(1) that gets executed
- #!/usr/bin/env bash for bash that gets executed
To this end, also
- Clean up a couple of related comments
- Fix a couple of bash-isms that I noticed in sh(1) files
- Fix permissions on a couple of files that get sourced
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|