Skip to content

Instantly share code, notes, and snippets.

@vtsatskin
Created October 30, 2014 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vtsatskin/2d14a6ac033f23247702 to your computer and use it in GitHub Desktop.
Save vtsatskin/2d14a6ac033f23247702 to your computer and use it in GitHub Desktop.
Failing vs working file structures for gulp-gh-pages issue #26
.
├── gh-pages
│   ├── css
│   │   ├── mozdoc
│   │   │   ├── octicons
│   │   │   │   ├── LICENSE.txt
│   │   │   │   ├── octicons.css
│   │   │   │   ├── octicons.eot
│   │   │   │   ├── octicons.svg
│   │   │   │   ├── octicons.ttf
│   │   │   │   └── octicons.woff
│   │   │   └── style.css
│   │   ├── override.css
│   │   └── style.css
│   ├── images
│   │   ├── logo.svg
│   │   ├── mozdoc
│   │   │   ├── logo.svg
│   │   │   └── ring@2x.png
│   │   └── ring@2x.png
│   ├── index.html
│   ├── js
│   │   ├── app.js
│   │   ├── ddscrollspy.js
│   │   ├── jquery.tableofcontents.min.js
│   │   └── mozdoc
│   │   ├── app.js
│   │   ├── ddscrollspy.js
│   │   └── jquery.tableofcontents.min.js
│   └── prototypes
│   ├── browser_84.png
│   ├── email_84.png
│   ├── index-multi.html
│   ├── index.html
│   ├── music_84.png
│   ├── script.js
│   ├── settings_icon@2x.png
│   └── style.css
├── index.html
├── master
│   ├── css
│   │   └── mozdoc
│   │   ├── octicons
│   │   │   ├── LICENSE.txt
│   │   │   ├── octicons.css
│   │   │   ├── octicons.eot
│   │   │   ├── octicons.svg
│   │   │   ├── octicons.ttf
│   │   │   └── octicons.woff
│   │   └── style.css
│   ├── images
│   │   └── mozdoc
│   │   ├── logo.svg
│   │   └── ring@2x.png
│   ├── index.html
│   └── js
│   └── mozdoc
│   ├── app.js
│   ├── ddscrollspy.js
│   └── jquery.tableofcontents.min.js
└── switch-to-mozdoc
├── css
│   ├── mozdoc
│   │   ├── octicons
│   │   │   ├── LICENSE.txt
│   │   │   ├── octicons.css
│   │   │   ├── octicons.eot
│   │   │   ├── octicons.svg
│   │   │   ├── octicons.ttf
│   │   │   └── octicons.woff
│   │   └── style.css
│   └── style.css
├── images
│   └── mozdoc
│   ├── logo.svg
│   └── ring@2x.png
├── index.html
├── js
│   └── mozdoc
│   ├── app.js
│   ├── ddscrollspy.js
│   └── jquery.tableofcontents.min.js
├── prototypes
│   ├── browser_84.png
│   ├── email_84.png
│   ├── index-multi.html
│   ├── index.html
│   ├── music_84.png
│   ├── script.js
│   ├── settings_icon@2x.png
│   └── style.css
└── specs.html
26 directories, 65 files
├── index.html
└── master
├── css
│   ├── common.css
│   ├── mozdoc
│   │   ├── octicons
│   │   │   ├── LICENSE.txt
│   │   │   ├── octicons.css
│   │   │   ├── octicons.eot
│   │   │   ├── octicons.svg
│   │   │   ├── octicons.ttf
│   │   │   └── octicons.woff
│   │   └── style.css
│   ├── netError.css
│   ├── search.css
│   ├── simplegrid.css
│   └── style.css
├── images
│   ├── broken.connection.by.Dimitri.Kunin.svg
│   ├── broken.page.svg
│   ├── info.svg
│   ├── missing.svg
│   ├── mozdoc
│   │   ├── logo.svg
│   │   └── ring@2x.png
│   ├── no.internet.by.Ugur.Akdemir.svg
│   └── plug-in.by.Florian.Huber.svg
├── index.html
├── js
│   └── mozdoc
│   ├── app.js
│   ├── ddscrollspy.js
│   └── jquery.tableofcontents.min.js
└── prototypes
├── connection-issue.html
├── content-encoding.html
├── corrupted-content.html
├── document-expired.html
├── file-not-found.html
├── generic.html
├── no-internet-instructions.html
├── no-internet.html
├── offline-mode.html
├── page-not-found.html
├── proxy-not-found.html
├── proxy-refusing-connections.html
├── redirect-loop.html
├── rtl.html
└── server-not-found.html
9 directories, 40 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment