Last active
October 8, 2015 21:47
-
-
Save ebsen/b49a23243bc3e6330300 to your computer and use it in GitHub Desktop.
Sculpin exception trace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❯ sculpin generate --server --watch --verbose | |
Detected new or updated files | |
Generating: 100% (62 sources / 0.01 seconds) | |
Converting: 100% (76 sources / 0.25 seconds) | |
Formatting: 100% (76 sources / 0.08 seconds) | |
[Symfony\Component\Filesystem\Exception\IOException] | |
Failed to create /Users/erik/Sites/ebsen.me/output_dev/building-without-css | |
Exception trace: | |
() at phar:///usr/local/bin/sculpin/vendor/symfony/filesystem/Symfony/Component/Filesystem/Filesystem.php:81 | |
Symfony\Component\Filesystem\Filesystem->mkdir() at phar:///usr/local/bin/sculpin/src/Sculpin/Core/Output/FilesystemWriter.php:57 | |
Sculpin\Core\Output\FilesystemWriter->write() at phar:///usr/local/bin/sculpin/src/Sculpin/Core/Sculpin.php:229 | |
Sculpin\Core\Sculpin->run() at phar:///usr/local/bin/sculpin/src/Sculpin/Bundle/SculpinBundle/Command/GenerateCommand.php:73 | |
Sculpin\Bundle\SculpinBundle\Command\GenerateCommand->execute() at phar:///usr/local/bin/sculpin/vendor/symfony/console/Symfony/Component/Console/Command/Command.php:253 | |
Symfony\Component\Console\Command\Command->run() at phar:///usr/local/bin/sculpin/vendor/symfony/console/Symfony/Component/Console/Application.php:874 | |
Symfony\Component\Console\Application->doRunCommand() at phar:///usr/local/bin/sculpin/vendor/symfony/console/Symfony/Component/Console/Application.php:195 | |
Symfony\Component\Console\Application->doRun() at phar:///usr/local/bin/sculpin/src/Sculpin/Bundle/SculpinBundle/Console/Application.php:118 | |
Sculpin\Bundle\SculpinBundle\Console\Application->doRun() at phar:///usr/local/bin/sculpin/vendor/symfony/console/Symfony/Component/Console/Application.php:126 | |
Symfony\Component\Console\Application->run() at phar:///usr/local/bin/sculpin/src/Sculpin/Bundle/SculpinBundle/Console/Application.php:93 | |
Sculpin\Bundle\SculpinBundle\Console\Application->run() at phar:///usr/local/bin/sculpin/bin/sculpin.php:75 | |
include() at phar:///usr/local/bin/sculpin/bin/sculpin-phar-stub:16 | |
require() at /usr/local/bin/sculpin:9 | |
generate [--watch] [--server] [--url="..."] [--port="..."] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sculpin: | |
ignore: ["**/*.css"] | |
sculpin_content_types: | |
posts: | |
# permalink: posts/:title/ # This permalink setting compiles. | |
permalink: :title/ # This one generates the trace above. | |
projects: | |
permalink: projects/:title/ # Either of these permalink settings work fine. | |
# permalink: :title/ | |
taxonomies: | |
- categories |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment