···147147 (let ((records (getf (fetch-entries +user-did+
148148 +max-entries+) :records)))
149149 (write-to-noscript-block #p"./index.html"
150150- records)
151151- (unwind-protect
152152- (progn (git-add "index.html")
153153- (git-commit "chore(ci): generate noscript fallback")
154154- (git-push))
155155- (format t "Either:~%- There were no changes between runs~%-Creating a commit failed for some reason (check git status)~%- Or the current branch doesn't have an upstream~%2~Please try running the publishing steps manually or run the fallback script again"))))
150150+ records))
151151+ (handler-case
152152+ (progn (git-add "index.html")
153153+ (git-commit "generate noscript fallback")
154154+ (git-push))
155155+ (t ()
156156+ (format t "Either:~%- There were no changes between runs~%- Creating a commit failed for some reason (check git status)~%- Or the current branch doesn't have an upstream~2%Please try running the publishing steps manually or run the fallback script again")
157157+ (uiop:quit 1))))