File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ bazel test //website/tests/...
8484
8585## Recommendations for Future Iterations
8686
87- 1 . ** Create Generator-Specific Wrappers** :
87+ 1 . ** Create Generator-Specific Wrappers** :
8888 ``` starlark
8989 def pelican_website (** kwargs ):
9090 # Set Pelican-specific defaults
Original file line number Diff line number Diff line change @@ -33,17 +33,17 @@ if [ ! -f "${TARBALL}" ]; then
3333else
3434 EXTRACT_DIR=$( mktemp -d)
3535 trap " rm -rf ${EXTRACT_DIR} " EXIT
36-
36+
3737 if tar -xzf " ${TARBALL} " -C " ${EXTRACT_DIR} " 2>&1 ; then
3838 echo " ✓ PASSED: Custom exclude tarball extracted"
39-
39+
4040 # Verify that fewer items are excluded
4141 # Note: This is a basic check - actual verification would depend on
4242 # knowing what the generator produces
4343 echo " Checking extracted contents..."
4444 file_count=$( find " ${EXTRACT_DIR} " -type f | wc -l)
4545 echo " Found ${file_count} files"
46-
46+
4747 if [ " ${file_count} " -gt 0 ]; then
4848 echo " ✓ PASSED: Files exist in custom exclude output"
4949 else
@@ -65,14 +65,14 @@ if [ ! -f "${TARBALL}" ]; then
6565 failed=$(( failed + 1 ))
6666else
6767 EXTRACT_DIR=$( mktemp -d)
68-
68+
6969 if tar -xzf " ${TARBALL} " -C " ${EXTRACT_DIR} " 2>&1 ; then
7070 echo " ✓ PASSED: Custom mappings tarball extracted"
71-
71+
7272 # Check that output was generated
7373 file_count=$( find " ${EXTRACT_DIR} " -type f | wc -l)
7474 echo " Found ${file_count} files"
75-
75+
7676 if [ " ${file_count} " -gt 0 ]; then
7777 echo " ✓ PASSED: Files exist in custom mappings output"
7878 else
You can’t perform that action at this time.
0 commit comments