this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Extend the fix for shell error in #134

+12 -3
+12 -3
src/dyld/darling
··· 33 33 else 34 34 35 35 updatets=$(cat $DPREFIX/.update-timestamp) 36 - if [ "$updatets" != "disable" -a "$updatets" != "disabled" ]; then 37 - [ $updatets -lt $selfmtime ] && setup_prefix "$DPREFIX" 38 - fi 36 + case $updatets in 37 + disable*) 38 + ;; 39 + ''|*[!0-9]*) 40 + setup_prefix "$DPREFIX" 41 + ;; 42 + *) 43 + [ $updatets -lt $selfmtime ] && setup_prefix "$DPREFIX" 44 + ;; 45 + esac 46 + 47 + return 0 39 48 fi 40 49 } 41 50