diff options
author | lassulus <lass@aidsballs.de> | 2016-10-13 21:59:56 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-10-13 21:59:56 +0200 |
commit | 52f50275651f0c762b7f9712cd6cc31077950421 (patch) | |
tree | 37df95c25251e1de010a260e73d6dd24038fdb73 /tv/5pkgs | |
parent | c419b951efaac4773954e547cf7c1af70a999396 (diff) | |
parent | 9fb29a7030a168046983457f6f7cf9d943661c06 (diff) |
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'tv/5pkgs')
-rw-r--r-- | tv/5pkgs/q/default.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tv/5pkgs/q/default.nix b/tv/5pkgs/q/default.nix index b19402fa4..f923950f0 100644 --- a/tv/5pkgs/q/default.nix +++ b/tv/5pkgs/q/default.nix @@ -178,6 +178,11 @@ in pkgs.writeBashBin "q" '' set -eu export PATH=/var/empty + (${q-todo}) || : + if [ "$PWD" != "$HOME" ]; then + (HOME=$PWD; ${q-todo}) || : + fi + echo ${q-cal} echo ${q-isodate} @@ -189,8 +194,4 @@ pkgs.writeBashBin "q" '' (${q-online}) & (${q-thermal_zone}) & wait - ${q-todo} - if [ "$PWD" != "$HOME" ]; then - (HOME=$PWD; ${q-todo}) - fi '' |