Skip to content

Commit

Permalink
copying logos to the public directory so they are available without c…
Browse files Browse the repository at this point in the history
…hanging asset names for shibboleth.
  • Loading branch information
sfisher committed Mar 7, 2017
1 parent a6ba37c commit a63fc3e
Show file tree
Hide file tree
Showing 16 changed files with 2,622 additions and 0 deletions.
9 changes: 9 additions & 0 deletions copy_logos.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

# originally going to symlink images, but causes problems so, doing this as a copy instead :-) Why the script is odd

find 'app/assets/images/tenants' -name '*.png' -o -name '*.jpg' -o -name '*.svg' | while read -r line
do
publicfn=public/images/$(basename $line)
cp "$line" "$publicfn"
done
Binary file added public/images/logo_dataone.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
252 changes: 252 additions & 0 deletions public/images/logo_datapoo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/logo_lbnl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
104 changes: 104 additions & 0 deletions public/images/logo_ucb.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a63fc3e

Please sign in to comment.